-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
domainservices.json
991 lines (991 loc) · 29.8 KB
/
domainservices.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
{
"swagger": "2.0",
"info": {
"title": "Domain Services Resource Provider",
"description": "The AAD Domain Services API.",
"version": "2017-06-01"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "Azure Active Directory OAuth2 Flow",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"paths": {
"/providers/Microsoft.AAD/operations": {
"get": {
"tags": [
"DomainServices"
],
"description": "Lists all the available Domain Services operations.",
"operationId": "DomainServiceOperations_List",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "HTTP 200 (OK) if the operation was successful.",
"schema": {
"$ref": "#/definitions/OperationEntityListResult"
}
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
"Get Operations": {
"$ref": "./examples/GetOperations.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.AAD/domainServices": {
"get": {
"tags": [
"DomainServices"
],
"operationId": "DomainServices_List",
"summary": "List Domain Services in Subscription",
"description": "The List Domain Services in Subscription operation lists all the domain services available under the given subscription (and across all resource groups within that subscription).",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "HTTP 200 (OK) if the operation was successful.",
"schema": {
"$ref": "#/definitions/DomainServiceListResult"
}
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
"List Domain Service": {
"$ref": "./examples/ListDomainServicesBySubscription.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices": {
"get": {
"tags": [
"DomainServices"
],
"operationId": "DomainServices_ListByResourceGroup",
"summary": "List Domain Services in Resource Group",
"description": "The List Domain Services in Resource Group operation lists all the domain services available under the given resource group.",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
},
{
"$ref": "#/parameters/ResourceGroupNameParameter"
}
],
"responses": {
"200": {
"description": "HTTP 200 (OK) if the operation was successful.",
"schema": {
"$ref": "#/definitions/DomainServiceListResult"
}
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
"List Domain Service": {
"$ref": "./examples/ListDomainServicesByResourceGroup.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AAD/domainServices/{domainServiceName}": {
"put": {
"tags": [
"DomainServices"
],
"operationId": "DomainServices_CreateOrUpdate",
"summary": "Create or Update Domain Service (PUT Resource)",
"description": "The Create Domain Service operation creates a new domain service with the specified parameters. If the specific service already exists, then any patchable properties will be updated and any immutable properties will remain unchanged.",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
},
{
"$ref": "#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/DomainServiceNameParameter"
},
{
"name": "domainService",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/DomainService"
},
"description": "Properties supplied to the Create or Update a Domain Service operation."
}
],
"responses": {
"200": {
"description": "HTTP 200 (OK) if the operation was successful.",
"schema": {
"$ref": "#/definitions/DomainService"
}
},
"201": {
"description": "HTTP 201 (Created) if the operation completed successfully.",
"schema": {
"$ref": "#/definitions/DomainService"
}
},
"202": {
"description": "HTTP 202 (Accepted) if the operation was successfully started and will complete asynchronously.",
"schema": {
"$ref": "#/definitions/DomainService"
}
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-examples": {
"Create Domain Service": {
"$ref": "./examples/CreateDomainService.json"
}
}
},
"get": {
"tags": [
"DomainServices"
],
"operationId": "DomainServices_Get",
"summary": "Get Domain Service",
"description": "The Get Domain Service operation retrieves a json representation of the Domain Service.",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
},
{
"$ref": "#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/DomainServiceNameParameter"
}
],
"responses": {
"200": {
"description": "HTTP 200 (OK) if the operation was successful.",
"schema": {
"$ref": "#/definitions/DomainService"
}
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
"Get Domain Service": {
"$ref": "./examples/GetDomainService.json"
}
}
},
"delete": {
"tags": [
"DomainServices"
],
"operationId": "DomainServices_Delete",
"summary": "Delete Domain Service (DELETE Resource)",
"description": "The Delete Domain Service operation deletes an existing Domain Service.",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
},
{
"$ref": "#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/DomainServiceNameParameter"
}
],
"responses": {
"202": {
"description": "HTTP 202 (Accepted) if the operation was successfully started and will complete asynchronously."
},
"204": {
"description": "HTTP 204 (Not Content) should be used if the resource does not exist and the request is well formed."
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-examples": {
"Delete Domain Service": {
"$ref": "./examples/DeleteDomainService.json"
}
}
},
"patch": {
"tags": [
"DomainServices"
],
"operationId": "DomainServices_Update",
"summary": "Update Domain Service (PATCH Resource)",
"description": "The Update Domain Service operation can be used to update the existing deployment. The update call only supports the properties listed in the PATCH body.",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
},
{
"$ref": "#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/DomainServiceNameParameter"
},
{
"name": "domainService",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/DomainService"
},
"description": "Properties supplied to the Update a Domain Service operation."
}
],
"responses": {
"200": {
"description": "HTTP 200 (OK) if the operation was successful.",
"schema": {
"$ref": "#/definitions/DomainService"
}
},
"202": {
"description": "HTTP 202 (Accepted) if the operation was successfully started and will complete asynchronously.",
"schema": {
"$ref": "#/definitions/DomainService"
}
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-examples": {
"Update Domain Service": {
"$ref": "./examples/UpdateDomainService.json"
}
}
}
}
},
"definitions": {
"Resource": {
"description": "The Resource model definition.",
"properties": {
"id": {
"readOnly": true,
"type": "string",
"description": "Resource Id"
},
"name": {
"readOnly": true,
"type": "string",
"description": "Resource name"
},
"type": {
"readOnly": true,
"type": "string",
"description": "Resource type"
},
"location": {
"type": "string",
"description": "Resource location",
"x-ms-mutability": [
"read",
"create"
]
},
"tags": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Resource tags"
},
"etag": {
"type": "string",
"description": "Resource etag"
}
},
"x-ms-azure-resource": true
},
"DomainService": {
"description": "Domain service.",
"properties": {
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/DomainServiceProperties",
"description": "Domain service properties"
}
},
"allOf": [
{
"$ref": "#/definitions/Resource"
}
]
},
"DomainServiceListResult": {
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/DomainService"
},
"description": "the list of domain services."
},
"nextLink": {
"type": "string",
"description": "The continuation token for the next page of results.",
"readOnly": true
}
},
"description": "The response from the List Domain Services operation."
},
"DomainServiceProperties": {
"description": "Properties of the Domain Service.",
"properties": {
"version": {
"readOnly": true,
"type": "integer",
"description": "Data Model Version"
},
"tenantId": {
"readOnly": true,
"type": "string",
"description": "Azure Active Directory Tenant Id"
},
"domainName": {
"type": "string",
"description": "The name of the Azure domain that the user would like to deploy Domain Services to."
},
"deploymentId": {
"readOnly": true,
"type": "string",
"description": "Deployment Id"
},
"vnetSiteId": {
"readOnly": true,
"type": "string",
"description": "Virtual network site id"
},
"subnetId": {
"type": "string",
"description": "The name of the virtual network that Domain Services will be deployed on. The id of the subnet that Domain Services will be deployed on. /virtualNetwork/vnetName/subnets/subnetName."
},
"ldapsSettings": {
"$ref": "#/definitions/LdapsSettings",
"description": "Secure LDAP Settings"
},
"domainSecuritySettings": {
"$ref": "#/definitions/DomainSecuritySettings",
"description": "DomainSecurity Settings"
},
"resourceForestSettings": {
"$ref": "#/definitions/ResourceForestSettings",
"description": "Resource Forest Settings"
},
"domainConfigurationType": {
"type": "string",
"description": "Domain Configuration Type"
},
"sku": {
"type": "string",
"description": "Sku Type"
},
"healthLastEvaluated": {
"readOnly": true,
"type": "string",
"format": "date-time-rfc1123",
"description": "Last domain evaluation run DateTime"
},
"healthMonitors": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/HealthMonitor",
"description": "Domain Health Monitors"
},
"description": "List of Domain Health Monitors"
},
"healthAlerts": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/HealthAlert",
"description": "Domain Health Alerts"
},
"description": "List of Domain Health Alerts"
},
"notificationSettings": {
"$ref": "#/definitions/NotificationSettings",
"description": "Notification Settings"
},
"migrationProperties": {
"$ref": "#/definitions/MigrationProperties",
"description": "Migration Properties"
},
"filteredSync": {
"type": "string",
"enum": [
"Enabled",
"Disabled"
],
"description": "Enabled or Disabled flag to turn on Group-based filtered sync",
"x-ms-enum": {
"name": "filteredSync",
"modelAsString": true
}
},
"domainControllerIpAddress": {
"readOnly": true,
"type": "array",
"items": {
"type": "string",
"description": "Domain Controller IP Address"
},
"description": "List of Domain Controller IP Address"
},
"serviceStatus": {
"readOnly": true,
"type": "string",
"description": "Status of Domain Service instance"
},
"provisioningState": {
"readOnly": true,
"type": "string",
"description": "the current deployment or provisioning state, which only appears in the response."
}
}
},
"LdapsSettings": {
"description": "Secure LDAP Settings",
"properties": {
"ldaps": {
"type": "string",
"enum": [
"Enabled",
"Disabled"
],
"description": "A flag to determine whether or not Secure LDAP is enabled or disabled.",
"x-ms-enum": {
"name": "Ldaps",
"modelAsString": true
}
},
"pfxCertificate": {
"type": "string",
"description": "The certificate required to configure Secure LDAP. The parameter passed here should be a base64encoded representation of the certificate pfx file."
},
"pfxCertificatePassword": {
"type": "string",
"description": "The password to decrypt the provided Secure LDAP certificate pfx file."
},
"publicCertificate": {
"readOnly": true,
"type": "string",
"description": "Public certificate used to configure secure ldap."
},
"certificateThumbprint": {
"readOnly": true,
"type": "string",
"description": "Thumbprint of configure ldaps certificate."
},
"certificateNotAfter": {
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "NotAfter DateTime of configure ldaps certificate."
},
"externalAccess": {
"type": "string",
"enum": [
"Enabled",
"Disabled"
],
"description": "A flag to determine whether or not Secure LDAP access over the internet is enabled or disabled.",
"x-ms-enum": {
"name": "ExternalAccess",
"modelAsString": true
}
},
"externalAccessIpAddress": {
"readOnly": true,
"type": "string",
"description": "External access ip address."
}
}
},
"HealthMonitor": {
"description": "Health Monitor Description",
"properties": {
"id": {
"readOnly": true,
"type": "string",
"description": "Health Monitor Id"
},
"name": {
"readOnly": true,
"type": "string",
"description": "Health Monitor Name"
},
"details": {
"readOnly": true,
"type": "string",
"description": "Health Monitor Details"
}
}
},
"HealthAlert": {
"description": "Health Alert Description",
"properties": {
"id": {
"readOnly": true,
"type": "string",
"description": "Health Alert Id"
},
"name": {
"readOnly": true,
"type": "string",
"description": "Health Alert Name"
},
"issue": {
"readOnly": true,
"type": "string",
"description": "Health Alert Issue"
},
"severity": {
"readOnly": true,
"type": "string",
"description": "Health Alert Severity"
},
"raised": {
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "Health Alert Raised DateTime"
},
"lastDetected": {
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "Health Alert Last Detected DateTime"
},
"resolutionUri": {
"readOnly": true,
"type": "string",
"description": "Health Alert TSG Link"
}
}
},
"NotificationSettings": {
"description": "Settings for notification",
"properties": {
"notifyGlobalAdmins": {
"type": "string",
"enum": [
"Enabled",
"Disabled"
],
"description": "Should global admins be notified",
"x-ms-enum": {
"name": "notifyGlobalAdmins",
"modelAsString": true
}
},
"notifyDcAdmins": {
"type": "string",
"enum": [
"Enabled",
"Disabled"
],
"description": "Should domain controller admins be notified",
"x-ms-enum": {
"name": "notifyDcAdmins",
"modelAsString": true
}
},
"additionalRecipients": {
"type": "array",
"items": {
"type": "string",
"description": "Email address for additional recipient"
},
"description": "The list of additional recipients"
}
}
},
"ResourceForestSettings": {
"description": "Settings for Resource Forest",
"properties": {
"settings": {
"type": "array",
"items": {
"$ref": "#/definitions/ForestTrust"
},
"description": "List of settings for Resource Forest"
},
"resourceForest": {
"type": "string",
"description": "Resource Forest"
}
}
},
"ForestTrust": {
"description": "Forest Trust Setting",
"properties": {
"trustedDomainFqdn": {
"type": "string",
"description": "Trusted Domain FQDN"
},
"trustDirection": {
"type": "string",
"description": "Trust Direction"
},
"friendlyName": {
"type": "string",
"description": "Friendly Name"
},
"remoteDnsIps": {
"type": "string",
"description": "Remote Dns ips"
},
"trustPassword": {
"type": "string",
"description": "Trust Password",
"x-ms-secret": true
}
}
},
"MigrationProperties": {
"description": "Migration Properties",
"properties": {
"oldSubnetId": {
"type": "string",
"description": "Old Subnet Id"
},
"oldVnetSiteId": {
"type": "string",
"description": "Old Vnet Site Id"
},
"migrationProgress": {
"$ref": "#/definitions/MigrationProgress",
"description": "Migration Progress"
}
}
},
"MigrationProgress": {
"description": "Migration Progress",
"properties": {
"completionPercentage": {
"type": "number",
"format": "double",
"description": "Completion Percentage"
},
"progressMessage": {
"type": "string",
"description": "Progress Message"
}
}
},
"DomainSecuritySettings": {
"description": "Domain Security Settings",
"properties": {
"ntlmV1": {
"type": "string",
"enum": [
"Enabled",
"Disabled"
],
"description": "A flag to determine whether or not NtlmV1 is enabled or disabled.",
"x-ms-enum": {
"name": "NtlmV1",
"modelAsString": true
}
},
"tlsV1": {
"type": "string",
"enum": [
"Enabled",
"Disabled"
],
"description": "A flag to determine whether or not TlsV1 is enabled or disabled.",
"x-ms-enum": {
"name": "TlsV1",
"modelAsString": true
}
},
"syncNtlmPasswords": {
"type": "string",
"enum": [
"Enabled",
"Disabled"
],
"description": "A flag to determine whether or not SyncNtlmPasswords is enabled or disabled.",
"x-ms-enum": {
"name": "SyncNtlmPasswords",
"modelAsString": true
}
},
"syncKerberosPasswords": {
"type": "string",
"enum": [
"Enabled",
"Disabled"
],
"description": "A flag to determine whether or not SyncKerberosPasswords is enabled or disabled.",
"x-ms-enum": {
"name": "SyncKerberosPasswords",
"modelAsString": true
}
},
"syncOnPremPasswords": {
"type": "string",
"enum": [
"Enabled",
"Disabled"
],
"description": "A flag to determine whether or not SyncOnPremPasswords is enabled or disabled.",
"x-ms-enum": {
"name": "SyncOnPremPasswords",
"modelAsString": true
}
}
}
},
"OperationEntityListResult": {
"description": "The list of domain service operation response.",
"type": "object",
"properties": {
"value": {
"description": "The list of operations.",
"type": "array",
"items": {
"$ref": "#/definitions/OperationEntity"
}
},
"nextLink": {
"type": "string",
"description": "The continuation token for the next page of results.",
"readOnly": true
}
}
},
"OperationEntity": {
"description": "The operation supported by Domain Services.",
"type": "object",
"properties": {
"name": {
"description": "Operation name: {provider}/{resource}/{operation}.",
"type": "string"
},
"display": {
"$ref": "#/definitions/OperationDisplayInfo",
"description": "The operation supported by Domain Services."
},
"origin": {
"description": "The origin of the operation.",
"type": "string"
}
}
},
"OperationDisplayInfo": {
"description": "The operation supported by Domain Services.",
"type": "object",
"properties": {
"description": {
"description": "The description of the operation.",
"type": "string"
},
"operation": {
"description": "The action that users can perform, based on their permission level.",
"type": "string"
},
"provider": {
"description": "Service provider: Domain Services.",
"type": "string"
},
"resource": {
"description": "Resource on which the operation is performed.",
"type": "string"
}
}
},
"DefaultErrorResponse": {
"description": "Domain Service error response.",
"type": "object",
"properties": {
"error": {
"description": "Error model.",
"type": "object",
"properties": {
"code": {
"description": "Standardized string to programmatically identify the error.",
"type": "string",
"readOnly": true
},
"message": {
"description": "Detailed error description and debugging information.",
"type": "string",
"readOnly": true
},
"target": {
"description": "Detailed error description and debugging information.",
"type": "string",
"readOnly": true
},
"details": {
"description": "Error details.",
"type": "array",
"items": {
"description": "Detailed errors.",
"properties": {
"code": {
"description": "Standardized string to programmatically identify the error.",
"type": "string",
"readOnly": true
},
"message": {
"description": "Detailed error description and debugging information.",
"type": "string",
"readOnly": true
},
"target": {
"description": "Detailed error description and debugging information.",
"type": "string",
"readOnly": true
}
},
"readOnly": true
}
},
"innererror": {
"description": "More information to debug error.",
"type": "string",
"readOnly": true
}
},
"readOnly": true
}
}
}
},
"parameters": {
"SubscriptionIdParameter": {
"name": "subscriptionId",
"in": "path",
"required": true,
"type": "string",
"description": "Gets subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call."
},
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
"required": true,
"type": "string",
"description": "Client Api Version."
},
"ResourceGroupNameParameter": {
"name": "resourceGroupName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the resource group within the user's subscription. The name is case insensitive.",
"pattern": "^[-\\w\\._\\(\\)]+$",
"minLength": 1,
"maxLength": 90,
"x-ms-parameter-location": "method"
},
"DomainServiceNameParameter": {
"name": "domainServiceName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the domain service.",
"x-ms-parameter-location": "method"
}
}
}